Remove Method (TKey, TValue)

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Removes a key-value pair from the dictionary. This method must be overridden in the derived class.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public abstract bool Remove(
	TKey key,
	TValue value
)
Visual Basic (Declaration)
Public MustOverride Function Remove ( _
	key As TKey, _
	value As TValue _
) As Boolean
Visual C++
public:
virtual bool Remove (
	TKey key, 
	TValue value
) abstract

Parameters

key
TKey
Key to remove from the dictionary.
value
TValue
Associated value to remove from the dictionary.

Return Value

True if the key-value pair was found, false otherwise.

See Also